home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / HyperCuber 2.0 Source / CControlsWindow.h < prev    next >
Encoding:
Text File  |  1994-04-29  |  627 b   |  27 lines  |  [TEXT/KAHL]

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| CControlsWindow.h
  3. //|
  4. //| This file contains the interface to a controls window.
  5. //|___________________________________________________________________________
  6.  
  7. #include "CEnhancedWindow.h"
  8.  
  9. class CControlsWindow : public CEnhancedWindow
  10.     {
  11.     
  12. public:
  13.  
  14.     short dimension;
  15.     
  16.     void IControlsWindow(short WINDid, Boolean aFloating,
  17.                         CDesktop *anEnclosure, CDirector *aSupervisor, short dim);
  18.  
  19.     virtual void Move(short h, short v);
  20.     virtual void HideFloat(void);
  21.     virtual void ShowFloat(void);
  22.     virtual void Drag(EventRecord *macEvent);
  23.     
  24.     };
  25.  
  26.  
  27.